home *** CD-ROM | disk | FTP | other *** search
/ EnigmA Amiga Run 1999 March / EnigmA AMIGA RUN 35 (1999)(G.R. Edizioni)(IT)[!][issue 1999-03].iso / earcd / -archivi / -recent2 / clib37x.lha / CLib37x / source / lib_source / storm_smakefile < prev   
Makefile  |  1997-01-03  |  622b  |  22 lines

  1. # you may have to fix this before a proper library can be compiled
  2.  
  3. FLAGS= -i /include -i StormC:include -d __asm -d __stdargs -d __aligned -pc -gD -gC -gO -O6
  4.  
  5. example.library :  StartUp.o LibInit.o SampleFuncs.o
  6.  
  7.                    StormLink StartUp.o LibInit.o SampleFuncs.o LIB storm amiga TO example.library MODEL FAR FORCELINK
  8.                    Copy example.library libs:
  9.                    Copy example.library //libs
  10.  
  11. StartUp.o : StartUp.c
  12.  
  13.                   StormC $(FLAGS) StartUp.c
  14.  
  15. LibInit.o : LibInit.c
  16.  
  17.            StormC $(FLAGS) LibInit.c
  18.  
  19. SampleFuncs.o : SampleFuncs.c
  20.  
  21.            StormC $(FLAGS) SampleFuncs.c
  22.